home *** CD-ROM | disk | FTP | other *** search
- object Form1: TForm1
- Left = 200
- Top = 108
- Width = 477
- Height = 364
- Caption = 'Event Test Program'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- PixelsPerInch = 96
- TextHeight = 13
- object Memo: TMemo
- Left = 0
- Top = 25
- Width = 284
- Height = 312
- Align = alClient
- Lines.Strings = (
- 'Type text in here or click/double click with the mouse. '
- 'Oberserve the changes in the checkbox controls to the'
- 'right. To clear the check boxes click the '#39'Clear All'#39' Button.'
- 'The check boxes will automatically reset after 5 seconds.')
- TabOrder = 0
- OnClick = MemoClick
- OnDblClick = MemoDblClick
- OnKeyDown = MemoKeyDown
- OnKeyPress = MemoKeyPress
- OnKeyUp = MemoKeyUp
- OnMouseDown = MemoMouseDown
- OnMouseUp = MemoMouseUp
- end
- object Panel2: TPanel
- Left = 284
- Top = 25
- Width = 185
- Height = 312
- Align = alRight
- BevelOuter = bvNone
- TabOrder = 1
- object ClearAll: TButton
- Left = 54
- Top = 276
- Width = 75
- Height = 25
- Caption = 'Clear All'
- TabOrder = 0
- OnClick = ClearAllClick
- end
- object GroupBox1: TGroupBox
- Left = 16
- Top = 0
- Width = 153
- Height = 145
- Caption = 'Mouse Events'
- TabOrder = 1
- object MouseDown: TCheckBox
- Left = 16
- Top = 24
- Width = 97
- Height = 17
- Caption = 'Mouse Down'
- TabOrder = 0
- end
- object MouseUp: TCheckBox
- Left = 16
- Top = 53
- Width = 97
- Height = 17
- Caption = 'Mouse Up'
- TabOrder = 1
- end
- object MouseClick: TCheckBox
- Left = 16
- Top = 83
- Width = 129
- Height = 17
- Caption = 'Mouse Click (OnClick)'
- TabOrder = 2
- end
- object MouseDblClick: TCheckBox
- Left = 16
- Top = 112
- Width = 129
- Height = 17
- Caption = 'Mouse Double Click'
- TabOrder = 3
- end
- end
- object GroupBox2: TGroupBox
- Left = 16
- Top = 160
- Width = 153
- Height = 105
- Caption = 'Key Events'
- TabOrder = 2
- object KeyDown: TCheckBox
- Left = 16
- Top = 24
- Width = 97
- Height = 17
- Caption = 'Key Down'
- TabOrder = 0
- end
- object KeyPress: TCheckBox
- Left = 16
- Top = 52
- Width = 97
- Height = 17
- Caption = 'Key Press'
- TabOrder = 1
- end
- object KeyUp: TCheckBox
- Left = 16
- Top = 80
- Width = 97
- Height = 17
- Caption = 'Key Up'
- TabOrder = 2
- end
- end
- end
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 469
- Height = 25
- Align = alTop
- Alignment = taLeftJustify
- BevelOuter = bvNone
- TabOrder = 2
- end
- object Timer: TTimer
- Enabled = False
- Interval = 5000
- OnTimer = TimerTimer
- Left = 432
- end
- end
-